Skip to main content
Version: 1.0.2

Approve Transaction

The Approve Transaction API grants approval to pending transactions that have been initiated. It is necessary to provide the Transaction IDs of the specific transactions that require approval.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

id

Mandatory

String

Unique ID for each request

jsonrpc

Mandatory

String

JSON RPC VERSION - should be "2.0"

method

Mandatory

String

Method Name - should be "VisaService.GetApprovalTickets"

params

Mandatory

Object

transactionIds

Mandatory

Array

List of Transaction Ids to be approved


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"id":"1","jsonrpc":"2.0","method":"VisaService.Approve","params":{"api":{"credential":"Basic ay5iYXN1dmFuQGJhbmtjYncub3JnOmUxYWY0Y2ExYzE1MDRiMTNiYzcxZjhlOTY0M2VjZTlj","signature":"{{signature}}"},"payload":{"transactionIds":["621e0fc7d711367ac1cae614"]}}}'

Body


{
"id": "1",
"jsonrpc": "2.0",
"method": "VisaService.Approve",
"params": {
"api": {
"credential": "Basic ay5iYXN1dmFuQGJhbmtjYncub3JnOmUxYWY0Y2ExYzE1MDRiMTNiYzcxZjhlOTY0M2VjZTlj",
"signature": "{{signature}}"
},
"payload": {
"transactionIds": [
"621e0fc7d711367ac1cae614"
]
}
}
}

Response: 201

Response Parameters
ParameterDescription

id

String

Unique ID for each request

jsonrpc

String

JSON RPC VERSION - should be "2.0"

result

Object

message

String

Approval confirmation message


{
"jsonrpc": "2.0",
"result": {
"message": "Approved successfully"
},
"id": "1"
}